home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / doc / examples / button_arrow.tcl < prev    next >
Encoding:
Text File  |  1995-06-29  |  485 b   |  26 lines

  1. #! moat
  2.  
  3. xtAppInitialize
  4.  
  5. xmBulletinBoard .top managed \
  6.     -width 120 -height 120
  7.  
  8. xmArrowButton .top.up managed \
  9.     -width 50 -height 50 \
  10.     -arrowDirection arrow_up
  11. xmArrowButton .top.right managed \
  12.     -width 50 -height 50 \
  13.     -x 60 \
  14.     -arrowDirection arrow_right
  15. xmArrowButton .top.down managed \
  16.     -width 50 -height 50 \
  17.     -x 60 -y 60 \
  18.     -arrowDirection arrow_down
  19. xmArrowButton .top.left managed \
  20.     -width 50 -height 50 \
  21.     -y 60 \
  22.     -arrowDirection arrow_left
  23.  
  24. . realizeWidget
  25. . mainLoop
  26.